home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- final class HashMap$KeySet extends AbstractSet<K> {
- // $FF: synthetic field
- final HashMap this$0;
-
- private HashMap$KeySet(HashMap var1) {
- this.this$0 = var1;
- }
-
- public Iterator<K> iterator() {
- return this.this$0.newKeyIterator();
- }
-
- public int size() {
- return this.this$0.size;
- }
-
- public boolean contains(Object var1) {
- return this.this$0.containsKey(var1);
- }
-
- public boolean remove(Object var1) {
- return this.this$0.removeEntryForKey(var1) != null;
- }
-
- public void clear() {
- this.this$0.clear();
- }
-
- // $FF: synthetic method
- HashMap$KeySet(HashMap var1, HashMap.1 var2) {
- this(var1);
- }
- }
-